Hello
A colleague (who I can no longer contact) left me a do-file with code like this:
These lines of code are used several times in the same do-file and I don't know why it is just not used once. Am I missing something?
Thanks
Laurence
A colleague (who I can no longer contact) left me a do-file with code like this:
Code:
{
capture drop fulltime
gen fulltime = 0 if X==2
replace fulltime = 1 if X==1
lab def fulltime 0 "Part time " 1 "Full time", replace
lab val fulltime fulltime
}
Thanks
Laurence

Comment